@font-face {
    font-family: 'Golden-Nature';
    src: url('./assets/fonts/Golden-Nature.woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Work Sans", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: clamp(14px, 1vw, 20px);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
}

.hero{
    min-height: 100vh;
    background-image: url("./assets/images/river.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2vmax;
    padding: 5vmax;
}

h1{
    font-family: "Golden-Nature";
    font-weight: 400;
    font-size: clamp(24px, 8vw, 120px);
    line-height: 1.2;
}

.prices{
    display: flex;
    gap: 1vmax;
    
}

.price__card{
    border-radius: 20px;
    padding: 1.5vmax;
    padding-right: 4vmax;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
    border: solid 1px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    backdrop-filter: blur(5px);
    gap: 1vmin;
}

.title{
    font-weight: 400;
    letter-spacing: .5em;
}

.time{
    font-size: clamp(16px, 2vw, 36px);
    border-bottom: 1px solid white;
}

.amount{
    font-family: "Golden-Nature";
    font-weight: 400;
    font-size: clamp(24px, 4vw, 64px);
    margin: 0;
    line-height: 1.2;
}

.call__button{
    padding: 1em;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
    border: solid 1px rgba(255, 255, 255, 0.1);
    color: white;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
    text-decoration: none;
    margin: 0 5px;
    backdrop-filter: blur(5px);
}

.about{
    min-height: 100vh;
    background-image: url("./assets/images/plains.png");
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about__card{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2vmax;
    gap: 2vmax;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.about__content{
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: 0 auto;
    gap: 1vmax;
}

.about__photo{
    width: 40%;
    height: 100%;
    object-fit: cover;
}

.card__text h2{
    text-wrap: nowrap;
    font-size: clamp(20px, 3vw, 96px);
}

.card__text p{
    width: 80%;
}

.card__text h4{
    font-weight: 400;
    letter-spacing: .5em;
    margin-top: 6vmax;
}

h2{
    font-family: "Golden-Nature";
    font-size: clamp(20px, 6vw, 96px);
    font-weight: 400;
}

.cta{
    display: flex;
    align-self: flex-end;
    width: fit-content;
    align-items: center;
}

.cta__buttons{
    display: flex;
}

.types{
    min-height: 100vh;
    background-image: url("");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vmax;
    padding: 5vmax 0;
}

h3{
    font-family: "Golden-Nature";
    font-weight: 400;
    font-size: clamp(18px, 3vw, 48px);
}

.types__container{
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 2vmax;
    width: 100%;
}

.type{
    width: 18vmax;
    padding: 1.5vmax;
    padding-bottom: 3vmax;
    height: fit-content;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 160px;
    display: flex;
    flex-direction: column;
    gap: 1vmax;
    backdrop-filter: blur(5px);
    font-size: clamp(12px, 1vw, 20px);
}

.ending{
    background-image: url("./assets/images/forest.png");
}

footer{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(153, 153, 153, 0.2));
    border: solid 1px rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 2vmax;
    backdrop-filter: blur(5px);
}

footer h2{
    font-size: clamp(18px, 3vw, 64px);
}

.footer__info{
    border-top: 1px solid rgba(255, 255, 255, 0.701);
    display: flex;
    justify-content: space-between;
}


.footer__links, .footer__numbers{
    padding: 1vmax 0;
    display: flex;
    gap: 1vmax;
    color: rgba(255, 255, 255, 0.71);
}

.footer__links a{
    color: rgba(255, 255, 255, 0.71);
    text-decoration: none;
    font-size: clamp(12px 1vw, 16px);
}

@media(max-width: 850px){
    .about__content{
        width: 90%;
    }
    .footer__info{
        flex-direction: column;
        gap: 0;
    }
    .footer__links{
        flex-wrap: wrap;
        gap: 3vmax;
    }
}

@media(max-width: 700px){
    .about{
        padding: 10vmin;
    }
    .about__content{
        width: 100%;
    }
    .about__card{
        flex-direction: column;
    }
    .about__photo{
        width: 100%;
    }
    .cta{
        flex-direction: column;
        margin: 0 auto;
    }
}

@media(max-width: 600px){
    .prices{
        flex-direction: column;
        width: 100%;
    }
    .types{
        padding: 3vmin;
    }
    .types__container{
        flex-direction: column;
    }
    .type img{
        height: 100%;
    }
    .type{
        flex-direction: row;
        width: fit-content;
        height: 15vh;
        align-items: center;
        text-align: left;
        padding: 0;
        padding: 1vmax;
    }
    .type h3{
        font-size: clamp(16px, 2vw, 20px);
    }
    
}

@media(max-width: 400px){
    .hero{
        padding: 5vmin;
    }
    .about__card h4{
        margin-top: 10px;
    }
    .about{
        padding: 3vmin;
    }
}